Important Defaults
Out of the box, TanStack Query is configured with aggressive but sane defaults. Sometimes these defaults can catch new users off guard or make learning/debugging difficult if they are unknown by the user. Keep them in mind as you continue to learn and use TanStack Query:
- Query instances via
useQueryoruseInfiniteQueryby default consider cached data as stale.
To change this behavior, you can configure your queries both globally and per-query using the
staleTimeoption. Specifying a longerstaleTimemeans queries will not refetch their data as often
-
A Query that has a
staleTimeset is considered fresh until thatstaleTimehas elapsed.- set
staleTimeto e.g.2 * 60 * 1000to make sure data is read from the cache, without triggering any kinds of refetches, for 2 minutes, or until the Query is invalidated manually. - set
staleTimetoInfinityto never trigger a refetch until the Query is invalidated manually. - set
staleTimeto'static'to never trigger a refetch, even if the Query is invalidated manually.
- set
-
Stale queries are refetched automatically in the background when:
- New instances of the query mount
- The window is refocused
- The network is reconnected
Setting
staleTimeis the recommended way to avoid excessive refetches, but you can also customize the points in time for refetches by setting options likerefetchOnMount,refetchOnWindowFocusandrefetchOnReconnect.
-
Queries can optionally be configured with a
refetchIntervalto trigger refetches periodically, which is independent of thestaleTimesetting. -
Query results that have no more active instances of
useQuery,useInfiniteQueryor query observers are labeled as "inactive" and remain in the cache in case they are used again at a later time. -
By default, "inactive" queries are garbage collected after 5 minutes.
To change this, you can alter the default
gcTimefor queries to something other than1000 * 60 * 5milliseconds. -
Queries that fail are silently retried 3 times, with exponential backoff delay before capturing and displaying an error to the UI.
To change this, you can alter the default
retryandretryDelayoptions for queries to something other than3and the default exponential backoff function. -
Query results by default are structurally shared to detect if data has actually changed and if not, the data reference remains unchanged to better help with value stabilization with regards to useMemo and useCallback. If this concept sounds foreign, then don't worry about it! 99.9% of the time you will not need to disable this and it makes your app more performant at zero cost to you.
Structural sharing only works with JSON-compatible values, any other value types will always be considered as changed. If you are seeing performance issues because of large responses for example, you can disable this feature with the
config.structuralSharingflag. If you are dealing with non-JSON compatible values in your query responses and still want to detect if data has changed or not, you can provide your own custom function asconfig.structuralSharingto compute a value from the old and new responses, retaining references as required.